home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 30 / Amiga Format AFCD30 (Sep 1998, Issue 114).iso / -readerstuff- / jamie_seeney / hdinstallers / install_duneii < prev    next >
Text File  |  1998-06-17  |  2KB  |  122 lines

  1. ; installation script for DuneII  by J.Seeney
  2.  
  3. ; tell user that the installer will be creating a drawer for the game
  4.  
  5. (message
  6.   (cat "\nYour copy of DuneII will be installed in a new drawer named "
  7.      "\"DuneII\". You will be asked where on your hard drive "
  8.          "(or other storage device) you want this drawer created."
  9.   )
  10. )
  11.  
  12. ; ask user where to put the drawer
  13.  
  14. (set robolocate
  15.   (askdir
  16.     (prompt "Please indicate where you want the DuneII Drawer "
  17.         "to be located.")
  18.     (help @askdir-help)
  19.     (default @default-dest)
  20.   )
  21. )
  22.  
  23. ; make a drawer
  24.  
  25. (set robopath (tackon robolocate "DuneII"))
  26.  
  27. (makedir robopath (infos))
  28.  
  29. (complete 10)
  30.  
  31. (set @default-dest robopath)
  32.  
  33. ; copy DuneII & Data to the drawer
  34.  
  35. (message "\nThe game files will now be copied from floppy disk to the new drawer.")
  36.  
  37. (askdisk
  38.   (prompt "Please insert the disk labeled \"DuneII_1\".")
  39.   (help @askdisk-help)
  40.   (dest "DuneII_1")
  41. )
  42.  
  43. (working "Copying files.")
  44.  
  45. (copyfiles
  46.   (source "DuneII_1:")
  47.   (dest robopath)
  48.   (all)
  49.   (infos)
  50. )
  51.  
  52. (complete 30)
  53.  
  54. (askdisk
  55.   (prompt "Please insert the disk labeled \"DuneII_2\".")
  56.   (help @askdisk-help)
  57.   (dest "DuneII_2")
  58. )
  59.  
  60. (working "Copying files.")
  61.  
  62. (copyfiles
  63.   (source "DuneII_2:")
  64.   (dest robopath )
  65.   (all)
  66.   (infos)
  67. )
  68.  
  69. (complete 50)
  70.  
  71. (askdisk
  72.   (prompt "Please insert the disk labeled \"DuneII_3\".")
  73.   (help @askdisk-help)
  74.   (dest "DuneII_3")
  75. )
  76.  
  77. (working "Copying files.")
  78.  
  79. (copyfiles
  80.   (source "DuneII_3:")
  81.   (dest robopath)
  82.   (all)
  83.   (infos)
  84. )
  85.  
  86. (complete 60)
  87.  
  88. (askdisk
  89.   (prompt "Please insert the disk labeled \"DuneII_4\".")
  90.   (help @askdisk-help)
  91.   (dest "DuneII_4")
  92. )
  93.  
  94. (working "Copying files.")
  95.  
  96. (copyfiles
  97.   (source "DuneII_4:")
  98.   (dest robopath )
  99.   (all)
  100.   (infos)
  101. )
  102.  
  103. (complete 80)
  104.  
  105. (askdisk
  106.   (prompt "Please insert the disk labeled \"DuneII_5\".")
  107.   (help @askdisk-help)
  108.   (dest "DuneII_5")
  109. )
  110.  
  111. (working "Copying files.")
  112.  
  113. (copyfiles
  114.   (source "DuneII_5:")
  115.   (dest robopath )
  116.   (all)
  117.   (infos)
  118. )
  119.  
  120. (complete 100)
  121.  
  122.